home *** CD-ROM | disk | FTP | other *** search
- global gGraphScores
-
- on goPlot
- global gMasterData
- go(label("plot"))
- goNarrator(gMasterData, "56")
- setUserArea(gMasterData, #plot)
- if voidp(gGraphScores) then
- set gGraphScores to [0, 0, 0, 0, 0, 0, 0, 0, 0]
- else
- reSetSliders()
- end if
- setHandCursor(#on, [4, 5, 6, 7, 8, 9, 10, 11, 12])
- end
-
- on exitPlot
- global checkMarks2
- getGraphPlot()
- setPuppetState([4, 12], #c, 0)
- setHandCursor(#off, [4, 5, 6, 7, 8, 9, 10, 11, 12])
- if getaProp(checkMarks2, #plot) = 0 then
- setaProp(checkMarks2, #plot, 1)
- end if
- end
-
- on moveSlider thisSprite
- puppetSound(1, "graph1.aif")
- set vMinHz to 178
- set vMaxHz to 601
- set vVertPos to the locV of sprite thisSprite
- puppetSprite(thisSprite, 1)
- set vNewLocH to vMinHz
- repeat while the mouseDown
- set vPlotLoc to the mouseH
- case 1 of
- (vPlotLoc < vMinHz):
- set the loc of sprite thisSprite to point(vMinHz, vVertPos)
- set vNewLocH to vMinHz
- (vPlotLoc > vMaxHz):
- set the loc of sprite thisSprite to point(vMaxHz, vVertPos)
- set vNewLocH to vMaxHz
- otherwise:
- set the loc of sprite thisSprite to point(vPlotLoc, vVertPos)
- set vNewLocH to vPlotLoc
- end case
- updateStage()
- end repeat
- puppetSound(1, "graph2.aif")
- set vDivDistance to 47.0
- set vDivNumber to integer((vNewLocH - vMinHz) / vDivDistance)
- set snapPointH to integer(vDivNumber * vDivDistance) + vMinHz
- set the loc of sprite thisSprite to point(snapPointH, vVertPos)
- scoreSlider(thisSprite, vDivNumber)
- end
-
- on scoreSlider thisSprite, userChoice
- setAt(gGraphScores, thisSprite - 3, userChoice + 1)
- end
-
- on clearGraph
- setPuppetState([4, 12], #c, 0)
- set the text of member "situation" to EMPTY
- updateStage()
- set gGraphScores to [0, 0, 0, 0, 0, 0, 0, 0, 0]
- end
-
- on DoneGraph
- getGraphPlot()
- print(the text of member "plot results")
- diskAudio(gMasterData, "56B")
- end
-
- on reSetSliders
- set vMinHz to 178
- set vMaxHz to 601
- set numPositions to 10
- set vDivDistance to 1.0 * (vMaxHz - vMinHz) / (numPositions - 1)
- repeat with thisOne = 1 to 9
- set thisSprite to thisOne + 3
- set thisAnswer to getAt(gGraphScores, thisOne)
- set vVertPos to the locV of sprite thisSprite
- if thisAnswer = 0 then
- puppetSprite(thisSprite, 0)
- next repeat
- end if
- puppetSprite(thisSprite, 1)
- set snapPointH to integer((thisAnswer - 1) * vDivDistance) + vMinHz
- set the loc of sprite thisSprite to point(snapPointH, vVertPos)
- end repeat
- updateStage()
- end
-